home *** CD-ROM | disk | FTP | other *** search
/ Space & Astronomy / Space and Astronomy (October 1993).iso / mac / VIEWERS / X11 / XGIF.TAR / xgif / xgifload.c < prev   
C/C++ Source or Header  |  1992-07-28  |  15KB  |  524 lines

  1. /*
  2.  * xgifload.c  -  based strongly on...
  3.  *
  4.  * gif2ras.c - Converts from a Compuserve GIF (tm) image to a Sun Raster image.
  5.  *
  6.  * Copyright (c) 1988, 1989 by Patrick J. Naughton
  7.  *
  8.  * Author: Patrick J. Naughton
  9.  * naughton@wind.sun.com
  10.  *
  11.  * Permission to use, copy, modify, and distribute this software and its
  12.  * documentation for any purpose and without fee is hereby granted,
  13.  * provided that the above copyright notice appear in all copies and that
  14.  * both that copyright notice and this permission notice appear in
  15.  * supporting documentation.
  16.  *
  17.  * This file is provided AS IS with no warranties of any kind.  The author
  18.  * shall have no liability with respect to the infringement of copyrights,
  19.  * trade secrets or any patents by this file or any part thereof.  In no
  20.  * event will the author be liable for any lost revenue or profits or
  21.  * other special, indirect and consequential damages.
  22.  *
  23.  */
  24.  
  25. #include "xgif.h"
  26.  
  27. typedef int boolean;
  28.  
  29. #define NEXTBYTE (*ptr++)
  30. #define IMAGESEP 0x2c
  31. #define INTERLACEMASK 0x40
  32. #define COLORMAPMASK 0x80
  33.  
  34. FILE *fp;
  35.  
  36. int BitOffset = 0,        /* Bit Offset of next code */
  37.     XC = 0, YC = 0,        /* Output X and Y coords of current pixel */
  38.     Pass = 0,            /* Used by output routine if interlaced pic */
  39.     OutCount = 0,        /* Decompressor output 'stack count' */
  40.     RWidth, RHeight,        /* screen dimensions */
  41.     Width, Height,        /* image dimensions */
  42.     LeftOfs, TopOfs,        /* image offset */
  43.     BitsPerPixel,        /* Bits per pixel, read from GIF header */
  44.     BytesPerScanline,        /* bytes per scanline in output raster */
  45.     ColorMapSize,        /* number of colors */
  46.     Background,            /* background color */
  47.     CodeSize,            /* Code size, read from GIF header */
  48.     InitCodeSize,        /* Starting code size, used during Clear */
  49.     Code,            /* Value returned by ReadCode */
  50.     MaxCode,            /* limiting value for current code size */
  51.     ClearCode,            /* GIF clear code */
  52.     EOFCode,            /* GIF end-of-information code */
  53.     CurCode, OldCode, InCode,    /* Decompressor variables */
  54.     FirstFree,            /* First free code, generated per GIF spec */
  55.     FreeCode,            /* Decompressor, next free slot in hash table */
  56.     FinChar,            /* Decompressor variable */
  57.     BitMask,            /* AND mask for data size */
  58.     ReadMask;            /* Code AND mask for current code size */
  59.  
  60. boolean Interlace, HasColormap;
  61. boolean Verbose = False;
  62.  
  63. byte *Image;            /* The result array */
  64. byte *RawGIF;            /* The heap array to hold it, raw */
  65. byte *Raster;            /* The raster data stream, unblocked */
  66.  
  67.     /* The hash table used by the decompressor */
  68. int Prefix[4096];
  69. int Suffix[4096];
  70.  
  71.     /* An output array used by the decompressor */
  72. int OutCode[1025];
  73.  
  74.     /* The color map, read from the GIF header */
  75. byte Red[256], Green[256], Blue[256], used[256];
  76. int  numused;
  77.  
  78. char *id = "GIF87a";
  79.  
  80.  
  81.  
  82. /*****************************/
  83. LoadGIF(fname)
  84.   char *fname;
  85. /*****************************/
  86. {
  87.     int            filesize;
  88.     register byte  ch, ch1;
  89.     register byte *ptr, *ptr1;
  90.     register int   i;
  91.  
  92.     if (strcmp(fname,"-")==0) { fp = stdin;  fname = "<stdin>"; }
  93.                          else fp = fopen(fname,"r");
  94.  
  95.     if (!fp) FatalError("file not found");
  96.  
  97.     /* find the size of the file */
  98.     fseek(fp, 0L, 2);
  99.     filesize = ftell(fp);
  100.     fseek(fp, 0L, 0);
  101.  
  102.     if (!(ptr = RawGIF = (byte *) malloc(filesize)))
  103.     FatalError("not enough memory to read gif file");
  104.  
  105.     if (!(Raster = (byte *) malloc(filesize)))
  106.     FatalError("not enough memory to read gif file");
  107.  
  108.     if (fread(ptr, filesize, 1, fp) != 1)
  109.     FatalError("GIF data read failed");
  110.  
  111.     if (strncmp(ptr, id, 6))
  112.     FatalError("not a GIF file");
  113.  
  114.     ptr += 6;
  115.  
  116. /* Get variables from the GIF screen descriptor */
  117.  
  118.     ch = NEXTBYTE;
  119.     RWidth = ch + 0x100 * NEXTBYTE;    /* screen dimensions... not used. */
  120.     ch = NEXTBYTE;
  121.     RHeight = ch + 0x100 * NEXTBYTE;
  122.  
  123.     if (Verbose)
  124.     fprintf(stderr, "screen dims: %dx%d.\n", RWidth, RHeight);
  125.  
  126.     ch = NEXTBYTE;
  127.     HasColormap = ((ch & COLORMAPMASK) ? True : False);
  128.  
  129.     BitsPerPixel = (ch & 7) + 1;
  130.     numcols = ColorMapSize = 1 << BitsPerPixel;
  131.     BitMask = ColorMapSize - 1;
  132.  
  133.     Background = NEXTBYTE;        /* background color... not used. */
  134.  
  135.     if (NEXTBYTE)        /* supposed to be NULL */
  136.     FatalError("corrupt GIF file (bad screen descriptor)");
  137.  
  138.  
  139. /* Read in global colormap. */
  140.  
  141.     if (HasColormap) {
  142.     if (Verbose)
  143.         fprintf(stderr, "%s is %dx%d, %d bits per pixel, (%d colors).\n",
  144.         fname, Width,Height,BitsPerPixel, ColorMapSize);
  145.     for (i = 0; i < ColorMapSize; i++) {
  146.         Red[i] = NEXTBYTE;
  147.         Green[i] = NEXTBYTE;
  148.         Blue[i] = NEXTBYTE;
  149.             used[i] = 0;
  150.         }
  151.         numused = 0;
  152.  
  153.         }
  154.  
  155.     else {  /* no colormap in GIF file */
  156.         fprintf(stderr,"%s:  warning!  no colortable in this file.  Winging it.\n",cmd);
  157.         if (!numcols) numcols=256;
  158.         for (i=0; i<numcols; i++) cols[i] = (unsigned long) i;
  159.         }
  160.  
  161. /* Check for image seperator */
  162.  
  163.     if (NEXTBYTE != IMAGESEP)
  164.     FatalError("corrupt GIF file (no image separator)");
  165.  
  166. /* Now read in values from the image descriptor */
  167.  
  168.     ch = NEXTBYTE;
  169.     LeftOfs = ch + 0x100 * NEXTBYTE;
  170.     ch = NEXTBYTE;
  171.     TopOfs = ch + 0x100 * NEXTBYTE;
  172.     ch = NEXTBYTE;
  173.     Width = ch + 0x100 * NEXTBYTE;
  174.     ch = NEXTBYTE;
  175.     Height = ch + 0x100 * NEXTBYTE;
  176.     Interlace = ((NEXTBYTE & INTERLACEMASK) ? True : False);
  177.  
  178.     if (Verbose)
  179.     fprintf(stderr, "Reading a %d by %d %sinterlaced image...",
  180.         Width, Height, (Interlace) ? "" : "non-");
  181.  
  182.     else 
  183.         fprintf(stderr, "%s:  %s is %dx%d, %d colors  ",
  184.        cmd, fname, Width,Height,ColorMapSize);
  185.     
  186.  
  187. /* Note that I ignore the possible existence of a local color map.
  188.  * I'm told there aren't many files around that use them, and the spec
  189.  * says it's defined for future use.  This could lead to an error
  190.  * reading some files. 
  191.  */
  192.  
  193. /* Start reading the raster data. First we get the intial code size
  194.  * and compute decompressor constant values, based on this code size.
  195.  */
  196.  
  197.     CodeSize = NEXTBYTE;
  198.     ClearCode = (1 << CodeSize);
  199.     EOFCode = ClearCode + 1;
  200.     FreeCode = FirstFree = ClearCode + 2;
  201.  
  202. /* The GIF spec has it that the code size is the code size used to
  203.  * compute the above values is the code size given in the file, but the
  204.  * code size used in compression/decompression is the code size given in
  205.  * the file plus one. (thus the ++).
  206.  */
  207.  
  208.     CodeSize++;
  209.     InitCodeSize = CodeSize;
  210.     MaxCode = (1 << CodeSize);
  211.     ReadMask = MaxCode - 1;
  212.  
  213. /* Read the raster data.  Here we just transpose it from the GIF array
  214.  * to the Raster array, turning it from a series of blocks into one long
  215.  * data stream, which makes life much easier for ReadCode().
  216.  */
  217.  
  218.     ptr1 = Raster;
  219.     do {
  220.     ch = ch1 = NEXTBYTE;
  221.     while (ch--) *ptr1++ = NEXTBYTE;
  222.     if ((Raster - ptr1) > filesize)
  223.         FatalError("corrupt GIF file (unblock)");
  224.     } while(ch1);
  225.  
  226.     free(RawGIF);        /* We're done with the raw data now... */
  227.  
  228.     if (Verbose) {
  229.     fprintf(stderr, "done.\n");
  230.     fprintf(stderr, "Decompressing...");
  231.     }
  232.  
  233.  
  234. /* Allocate the X Image */
  235.     Image = (byte *) malloc(Width*Height);
  236.     if (!Image) FatalError("not enough memory for XImage");
  237.  
  238.     theImage = XCreateImage(theDisp,theVisual,8,ZPixmap,0,Image,
  239.                          Width,Height,8,Width);
  240.     if (!theImage) FatalError("unable to create XImage");
  241.  
  242.     BytesPerScanline = Width;
  243.  
  244.  
  245. /* Decompress the file, continuing until you see the GIF EOF code.
  246.  * One obvious enhancement is to add checking for corrupt files here.
  247.  */
  248.  
  249.     Code = ReadCode();
  250.     while (Code != EOFCode) {
  251.  
  252. /* Clear code sets everything back to its initial value, then reads the
  253.  * immediately subsequent code as uncompressed data.
  254.  */
  255.  
  256.     if (Code == ClearCode) {
  257.         CodeSize = InitCodeSize;
  258.         MaxCode = (1 << CodeSize);
  259.         ReadMask = MaxCode - 1;
  260.         FreeCode = FirstFree;
  261.         CurCode = OldCode = Code = ReadCode();
  262.         FinChar = CurCode & BitMask;
  263.         AddToPixel(FinChar);
  264.     }
  265.     else {
  266.  
  267. /* If not a clear code, then must be data: save same as CurCode and InCode */
  268.  
  269.         CurCode = InCode = Code;
  270.  
  271. /* If greater or equal to FreeCode, not in the hash table yet;
  272.  * repeat the last character decoded
  273.  */
  274.  
  275.         if (CurCode >= FreeCode) {
  276.         CurCode = OldCode;
  277.         OutCode[OutCount++] = FinChar;
  278.         }
  279.  
  280. /* Unless this code is raw data, pursue the chain pointed to by CurCode
  281.  * through the hash table to its end; each code in the chain puts its
  282.  * associated output code on the output queue.
  283.  */
  284.  
  285.         while (CurCode > BitMask) {
  286.         if (OutCount > 1024) {
  287.             fprintf(stderr,"\nCorrupt GIF file (OutCount)!\n");
  288.                     _exit(-1);  /* calling 'exit(-1)' dumps core, so I don't */
  289.                     }
  290.         OutCode[OutCount++] = Suffix[CurCode];
  291.         CurCode = Prefix[CurCode];
  292.         }
  293.  
  294. /* The last code in the chain is treated as raw data. */
  295.  
  296.         FinChar = CurCode & BitMask;
  297.         OutCode[OutCount++] = FinChar;
  298.  
  299. /* Now we put the data out to the Output routine.
  300.  * It's been stacked LIFO, so deal with it that way...
  301.  */
  302.  
  303.         for (i = OutCount - 1; i >= 0; i--)
  304.         AddToPixel(OutCode[i]);
  305.         OutCount = 0;
  306.  
  307. /* Build the hash table on-the-fly. No table is stored in the file. */
  308.  
  309.         Prefix[FreeCode] = OldCode;
  310.         Suffix[FreeCode] = FinChar;
  311.         OldCode = InCode;
  312.  
  313. /* Point to the next slot in the table.  If we exceed the current
  314.  * MaxCode value, increment the code size unless it's already 12.  If it
  315.  * is, do nothing: the next code decompressed better be CLEAR
  316.  */
  317.  
  318.         FreeCode++;
  319.         if (FreeCode >= MaxCode) {
  320.         if (CodeSize < 12) {
  321.             CodeSize++;
  322.             MaxCode *= 2;
  323.             ReadMask = (1 << CodeSize) - 1;
  324.         }
  325.         }
  326.     }
  327.     Code = ReadCode();
  328.     }
  329.  
  330.     free(Raster);
  331.  
  332.     if (Verbose)
  333.     fprintf(stderr, "done.\n");
  334.     else
  335.         fprintf(stderr,"(of which %d are used)\n",numused);
  336.  
  337.     if (fp != stdin)
  338.     fclose(fp);
  339.  
  340.     ColorDicking(fname);
  341. }
  342.  
  343.  
  344. /* Fetch the next code from the raster data stream.  The codes can be
  345.  * any length from 3 to 12 bits, packed into 8-bit bytes, so we have to
  346.  * maintain our location in the Raster array as a BIT Offset.  We compute
  347.  * the byte Offset into the raster array by dividing this by 8, pick up
  348.  * three bytes, compute the bit Offset into our 24-bit chunk, shift to
  349.  * bring the desired code to the bottom, then mask it off and return it. 
  350.  */
  351. ReadCode()
  352. {
  353. int RawCode, ByteOffset;
  354.  
  355.     ByteOffset = BitOffset / 8;
  356.     RawCode = Raster[ByteOffset] + (0x100 * Raster[ByteOffset + 1]);
  357.     if (CodeSize >= 8)
  358.     RawCode += (0x10000 * Raster[ByteOffset + 2]);
  359.     RawCode >>= (BitOffset % 8);
  360.     BitOffset += CodeSize;
  361.     return(RawCode & ReadMask);
  362. }
  363.  
  364.  
  365. AddToPixel(Index)
  366. byte Index;
  367. {
  368.     if (YC<Height)
  369.         *(Image + YC * BytesPerScanline + XC) = Index;
  370.  
  371.     if (!used[Index]) { used[Index]=1;  numused++; }
  372.  
  373. /* Update the X-coordinate, and if it overflows, update the Y-coordinate */
  374.  
  375.     if (++XC == Width) {
  376.  
  377. /* If a non-interlaced picture, just increment YC to the next scan line. 
  378.  * If it's interlaced, deal with the interlace as described in the GIF
  379.  * spec.  Put the decoded scan line out to the screen if we haven't gone
  380.  * past the bottom of it
  381.  */
  382.  
  383.     XC = 0;
  384.     if (!Interlace) YC++;
  385.     else {
  386.         switch (Pass) {
  387.         case 0:
  388.             YC += 8;
  389.             if (YC >= Height) {
  390.             Pass++;
  391.             YC = 4;
  392.             }
  393.         break;
  394.         case 1:
  395.             YC += 8;
  396.             if (YC >= Height) {
  397.             Pass++;
  398.             YC = 2;
  399.             }
  400.         break;
  401.         case 2:
  402.             YC += 4;
  403.             if (YC >= Height) {
  404.             Pass++;
  405.             YC = 1;
  406.             }
  407.         break;
  408.         case 3:
  409.             YC += 2;
  410.         break;
  411.         default:
  412.         break;
  413.         }
  414.     }
  415.     }
  416. }
  417.  
  418.  
  419.  
  420. /*************************/
  421. ColorDicking(fname)
  422. char *fname;
  423. {
  424.     /* we've got the picture loaded, we know what colors are needed. get 'em */
  425.  
  426.     register int   i,j;
  427.     static byte    lmasks[8] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80};
  428.     byte           lmask, *ptr;
  429.  
  430.  
  431.     if (!HasColormap) return;
  432.     /* no need to allocate any colors if no colormap in GIF file */
  433.  
  434.     /* Allocate the X colors for this picture */
  435.  
  436.     if (nostrip)  {   /* nostrip was set.  try REAL hard to do it */
  437.         for (i=j=0; i<numcols; i++) {
  438.             if (used[i]) {
  439.                 defs[i].red   = Red[i]<<8;
  440.                 defs[i].green = Green[i]<<8;
  441.                 defs[i].blue  = Blue[i]<<8;
  442.                 defs[i].flags = DoRed | DoGreen | DoBlue;
  443.                 if (!XAllocColor(theDisp,theCmap,&defs[i])) { 
  444.                     j++;  defs[i].pixel = 0xffff;
  445.                     }
  446.                 cols[i] = defs[i].pixel;
  447.                 }
  448.             }
  449.  
  450.         if (j) {        /* failed to pull it off */
  451.             XColor ctab[256];
  452.             int    dc;
  453.  
  454.             dc = (dispcells<256) ? dispcells : 256;
  455.  
  456.             fprintf(stderr,"failed to allocate %d out of %d colors.  Trying extra hard.\n",j,numused);
  457.  
  458.             /* read in the color table */
  459.             for (i=0; i<dc; i++) ctab[i].pixel = i;
  460.             XQueryColors(theDisp,theCmap,ctab,dc);
  461.                 
  462.             /* run through the used colors.  any used color that has a pixel
  463.                value of 0xffff wasn't allocated.  for such colors, run through
  464.                the entire X colormap and pick the closest color */
  465.  
  466.             for (i=0; i<numcols; i++)
  467.                 if (used[i] && cols[i]==0xffff) {  /* an unallocated pixel */
  468.                     int d, mdist, close;
  469.                     unsigned long r,g,b;
  470.  
  471.                     mdist = 100000;   close = -1;
  472.                     r =  Red[i];
  473.                     g =  Green[i];
  474.                     b =  Blue[i];
  475.                     for (j=0; j<dc; j++) {
  476.                         d = abs(r - (ctab[j].red>>8)) +
  477.                             abs(g - (ctab[j].green>>8)) +
  478.                             abs(b - (ctab[j].blue>>8));
  479.                         if (d<mdist) { mdist=d; close=j; }
  480.                         }
  481.                     if (close<0) FatalError("simply can't do it.  Sorry.");
  482.                     bcopy(&defs[close],&defs[i],sizeof(XColor));
  483.                     cols[i] = ctab[close].pixel;
  484.                     }
  485.             }    /* end 'failed to pull it off' */
  486.         }
  487.  
  488.     else {          /* strip wasn't set, do the best auto-strip */
  489.         j = 0;
  490.         while (strip<8) {
  491.             lmask = lmasks[strip];
  492.             for (i=0; i<numcols; i++)
  493.                 if (used[i]) {
  494.                     defs[i].red   = (Red[i]  &lmask)<<8;
  495.                     defs[i].green = (Green[i]&lmask)<<8;
  496.                     defs[i].blue  = (Blue[i] &lmask)<<8;
  497.                     defs[i].flags = DoRed | DoGreen | DoBlue;
  498.                     if (!XAllocColor(theDisp,theCmap,&defs[i])) break;
  499.                     cols[i] = defs[i].pixel;
  500.                     }
  501.  
  502.             if (i<numcols) {        /* failed */
  503.                 strip++;  j++;
  504.                 for (i--; i>=0; i--)
  505.                     if (used[i]) XFreeColors(theDisp,theCmap,cols+i,1,0L);
  506.                 }
  507.             else break;
  508.             }
  509.  
  510.         if (j && strip<8)
  511.             fprintf(stderr,"%s:  %s stripped %d bits\n",cmd,fname,strip);
  512.  
  513.         if (strip==8) {
  514.             fprintf(stderr,"UTTERLY failed to allocate the desired colors.\n");
  515.             for (i=0; i<numcols; i++) cols[i]=i;
  516.             }
  517.         }
  518.  
  519.     ptr = Image;
  520.     for (i=0; i<Height; i++)
  521.         for (j=0; j<Width; j++,ptr++) 
  522.             *ptr = (byte) cols[*ptr];
  523. }
  524.